home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvtools / demos / mfgdemo / mfg_dyn.c < prev    next >
C/C++ Source or Header  |  1997-05-08  |  904b  |  36 lines

  1. #ifndef lint
  2. static char SccsId[]= "@(#)mfg_dyn.c    V1.7    3/15/95";
  3. #endif
  4.  
  5. /*------------------------------------------------------------------
  6. | file name -- dynamics.c
  7. |-----------------------------------------------------------------*/
  8.  
  9. #include "std.h"
  10. #include "dvstd.h"
  11. #include "dvtools.h"
  12. #include "VOstd.h"
  13. #include "Tfundecl.h"
  14. #include "mfg_vars.h"
  15. #include "mfg_fundecl.h"
  16.  
  17.  
  18. /*-----------------------------------------------------------------
  19. |
  20. |  HandleDynamics
  21. |       Performs the functions needed to update the display to
  22. |       reflect the latest data.
  23. */
  24. void HandleDynamics 
  25. V_P_ ((void))
  26. {
  27.   /* Update the model buffers */
  28.   UpdateModel ();
  29.  
  30.   /* Update the dynamic objects in the MAIN WINDOW */
  31.   (VOID) TdpDrawNext (ActiveDrawport);
  32.   if (ActiveDrawport == DrawportId[PAINT_SHOP_VIEW] && PidDrawport)
  33.     (VOID) TdpDrawNext (PidDrawport);
  34.  
  35. }
  36.